home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 054a / mntini10.zip / MAINTINI.DOC next >
Text File  |  1993-03-23  |  4KB  |  90 lines

  1. ACKNOWLEDGEMENTS:
  2.  
  3. Thanks to the good people at Borland International and
  4. TurboPower Software. Without their wares, this program would
  5. not have been written.
  6.  
  7. Microsoft for not supplying us with decent administration tools.
  8. With them, this program would not have been neccessary.
  9.  
  10. PURPOSE:
  11.  
  12. This program will be of use to Network administrators who need
  13. to administer Windows 3.1 on the network and make changes to specific
  14. parameters in the INI files.  The program is invoked with four parameters:
  15.  
  16. MAINTINI filename section parameter [+-]value
  17.  
  18. filename = This is the INI filename.  The file may be either
  19.            in the current directory or anywhere in the path.  The
  20.            first occurence of the file is changed. Specify the
  21.            filename including the extension.
  22.  
  23.  section = This is the section in the INI file where the parameter to
  24.            be changed is to be found. eg:[windows]
  25.            ******* IMPORTANT *******
  26.            The section should not be enclosed in '[]'.  These
  27.            brackets are automatically supplied by the program.
  28.  
  29. parameter = Name of the parameter eg:load,run
  30.  
  31. value     = This is the value for the parameter.
  32.             If the first character of the value is a + symbol,
  33.             the value is added to the existing line in the file.
  34.             eg: MAINTINI WIN.INI windows load +q.exe
  35.                 If your load line looked like load=nwpopup.exe,
  36.                 after the program runs, it would look like
  37.                 load=nwpopup.exe q.exe.
  38.  
  39.             If the first character is -, then the supplied value
  40.             will be removed from the line if it exists:
  41.             eg: MAINTINI WIN.INI windows load +q.exe
  42.                 If your load line looked like load=nwpopup.exe q.exe,
  43.                 after the program runs, it would look like
  44.                 load=nwpopup.exe
  45.  
  46.             If the first character is anything else, the supplied
  47.             value will overwrite any other values for that parameter.
  48.             To use the same example as above, if your load line
  49.             looks like load=nwpopup.exe q.exe and you ran the
  50.             program with
  51.             MAINTINI WIN.INI windows load q.exe
  52.             after the execution, the line would be load=q.exe.
  53.  
  54.  
  55. As far as I know the program works fine.
  56.  
  57. PLANNED ENHANCEMENTS:
  58. - If the parameter line does not exist in the file, add the line.
  59. - Comment out a line.
  60. - Change multiple files, multiple lines at the same time using a
  61.   configuration files.
  62. - Other goodies as yet unknown.
  63.  
  64. THE FINANCIAL STUFF.
  65.  
  66. This program is supplied at no cost to you apart from the cost of
  67. the download.  I ask for no contributions but if you are feeling
  68. generous, please contribute whatever you can afford to the local
  69. food bank or to your favorite charity.
  70.  
  71. I can be contacted at 71521,21 on Compuserve Information Service
  72. if you have any suggestions, comments or bug reports.  Please be
  73. patient if you don't hear back from me as I have a more than fulltime
  74. job.  I will post any enhancements/bug fixes as soon as I make them
  75. and will notify you if you have gotten in touch with me.
  76.  
  77.  
  78. DISCLAIMER
  79. This is the work me, the individual.  I make no claims as to the
  80. functionality or suitability of this program for any purpose.  Use
  81. this entirely at your own risk and I will not be held liable for
  82. any damages, loss of revenue or any fortunate or unfortunate
  83. occurence as a result of using or not using this program.
  84.  
  85. This program was written using Borland Pascal 7.0 from Borland 
  86. International and the Object Professional 1.20 from TurboPower 
  87. Software.The program contains copyrighted code from these two 
  88. sources.
  89.  
  90.